{% extends "base.html" %} {% block title %}Статистика{% endblock %} {% block content %}

Статистика тестирования

По тестам

{% for item in test_stats %} {% if detailed_reports[item.test.id] %} {% endif %} {% endfor %}
Тест Попыток Средний балл % успешности
{{ item.test.title }} {{ item.attempts }} {% if item.average_score %} {{ item.average_score }} {% else %} нет данных {% endif %} {% if item.pass_rate is not none %} {{ item.pass_rate }}% {% else %} нет данных {% endif %} {% if detailed_reports[item.test.id] %} {% endif %}
{% for row in detailed_reports[item.test.id] %} {% endfor %}
Пользователь ФИО Отдел Всего попыток Последнее прохождение Оценка
{{ row.user.username }} {% if row.user.full_name %} {{ row.user.full_name }} {% else %} не указано {% endif %} {% if row.user.department %} {{ row.user.department }} {% else %} не указано {% endif %} {{ row.attempt_count }} {% if row.last_completed_at %} {{ row.last_completed_at.strftime('%d.%m.%Y %H:%M') }} {% else %} в процессе {% endif %} {% if row.last_score %} {{ row.last_score }} {% else %} нет {% endif %} {% if row.last_attempt_id %} Отчет {% endif %}

Последние попытки пользователей

{% if user_attempts %}
{% for attempt in user_attempts %} {% endfor %}
Пользователь Тест Оценка Дата
{{ attempt.user.username }} {{ attempt.test.title }} {{ attempt.score }} {{ attempt.completed_at.strftime('%d.%m.%Y %H:%M') }}
{% else %}

Активных данных нет.

{% endif %}
{% endblock %}